home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / art&graf.ix / art-5571 / depth3.pov < prev    next >
Text File  |  1994-08-09  |  647b  |  34 lines

  1. // SIRDS z-depth data with POV-Ray #3
  2. // )C( 7/1994 Christian Perle
  3.  
  4. #include "colors.inc"
  5.  
  6. camera {
  7.   location  <0, 0, -9>
  8.   direction <0, 0, 2.5>
  9.   up        <0, 1, 0>
  10.   right     <640/470, 0, 0>
  11.   look_at   <0, 0, 2.5>
  12. }
  13.  
  14. union {
  15.   difference {
  16.     cylinder { <0, -.2, 0>, <0, .2, 0>, 1 }
  17.     cylinder { <0, -.3, 0>, <0, .3, 0>, .7 }
  18.   }
  19.   cylinder { <0, -1, 0>, <0, 1, 0>, .25 }
  20.   rotate <-20, 30, 0>
  21.   translate 1.02*z
  22.  
  23.   pigment {  // white/black gradient
  24.     gradient z
  25.     translate -10*z
  26.     color_map {
  27.       [0 color White]
  28.       [1 color Black]
  29.     }
  30.     scale 2
  31.   }
  32.   finish { ambient 1 diffuse 0 }
  33. }
  34.